home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat2 / fcontour.2 < prev    next >
Text File  |  1999-09-16  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. fcontour(2)                    Scilab Function                    fcontour(2)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   fcontour - level curves
  13.  
  14. CALLING SEQUENCE
  15.   fcontour(xr,yr,f,nz,[theta,alpha,caption,flag,bbox,zlev])
  16.  
  17. PARAMETERS
  18.  
  19.   xr,yr     : two real vectors of size respectively (1,n1) and (1,n2).
  20.  
  21.   f         : is an external which gives the analytic expression of the sur-
  22.             face.  z=f(x,y) is first computed on the grid specified by xr.yr.
  23.             Then, control is passed to the routine contour.
  24.  
  25.   nz        : specifies the level values or number.
  26.  
  27.             - If nz is of size 1, its value considered as an integer gives
  28.               the number of level curves equally spaced from zmin to zmax.
  29.  
  30.             - If nz is a vector, nz(j) gives the value of the jth level
  31.               curve.
  32.  
  33.   [rest]    : for theta,alpha,caption, bbox see plot3d
  34.  
  35.   flag      : real vector of size 3 ; flag=[mode,type,box]; flag(2) and
  36.             flag(3) are the same as in plot3d; flag(1) has the following
  37.             meaning :
  38.  
  39.             flag(1)=0      : the level curves are drawn on the surface
  40.                            defined by (x,y,z)
  41.  
  42.             flag(1)=1      : the level curves are drawn on a 3D plot and on
  43.                            the plan defined by equation z=zlev
  44.  
  45.             flag(1)=2      : The level curves are drawn on a 2D plot.
  46.  
  47. DESCRIPTION
  48.   Draws the level curves of a surface z=f(x,y)
  49.  
  50.   Enter the command fcontour() to see a demo.
  51.  
  52. AUTHOR
  53.   J.Ph.C..
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.